home *** CD-ROM | disk | FTP | other *** search
/ Merciful 1 / Merciful - Disc 1.iso / software / a / abzoo / abzoo.dms / in.adf / devs / MountList next >
Encoding:
Text File  |  1988-10-31  |  2.9 KB  |  114 lines

  1. /* MountList for V1.3 */
  2.  
  3. /*  Mount Entry for the new Console Handler    */
  4.  
  5. NEWCON:       Handler = L:Newcon-Handler
  6.        Priority = 5
  7.        StackSize = 1000
  8. #
  9.  
  10. /*  This is an example of an alternative type of non-filing device mount,
  11.     used to mount the non-buffered serial handler
  12. */
  13.  
  14. AUX:       Handler = L:Aux-Handler
  15.            Stacksize = 6000
  16.            Priority = 5
  17.        GlobVec = -1
  18. #
  19. /*  This is an example of an alternative type of non-filing device mount,
  20.     used to mount the pipe handler
  21. */
  22.  
  23. PIPE:      Handler = L:Pipe-Handler
  24.            Stacksize = 6000
  25.            Priority = 5
  26.        GlobVec = -1
  27. #
  28.  
  29. /* This is an example of a non-filing system mount using a handler written
  30.    in C.
  31. */
  32.  
  33. SPEAK:     Handler = L:Speak-Handler
  34.            Stacksize = 6000
  35.            Priority = 5
  36.        GlobVec = -1
  37. #
  38.  
  39. /* This is an example of a mount list entry for using the recoverable 
  40.    ram disk.  Depending on the amount of memory you wish to devote to
  41.    it, you may want to change the HighCyl value.
  42. */
  43.  
  44. RAD:       Device = ramdrive.device
  45.            Unit   = 0
  46.            Flags  = 0
  47.            Surfaces  = 2
  48.            BlocksPerTrack = 11
  49.            Reserved = 2
  50.            Interleave = 0
  51.            LowCyl = 0  ;  HighCyl = 21
  52.            Buffers = 5
  53.            BufMemType = 1
  54. #
  55.  
  56. /* Mount a 5.25" disk drive to be mounted as DF2: */
  57.  
  58. DF2:       Device = trackdisk.device
  59.            Unit   = 2
  60.            Flags  = 1
  61.            Surfaces  = 2
  62.            BlocksPerTrack = 11
  63.            Reserved = 2
  64.            Interleave = 0
  65.            LowCyl = 0  ;  HighCyl = 39
  66.            Buffers = 20
  67.            BufMemType = 3
  68. #
  69.  
  70. /* An example mount entry using the fast file system with a partition
  71.    of the hard disk using the 2090 disk controller.  PREP has been
  72.    used to create the first partition (up to cylinder 20).  The second
  73.    partition is MOUNTed, using the following entry:
  74.    NOTE: Some hard disk drivers require more stack than specified here.
  75.    Some may required less.
  76.    (The hard disk is not included; this is only an example.)
  77. */
  78.  
  79. FAST:      Device = hddisk.device
  80.        FileSystem = l:FastFileSystem
  81.        Unit   = 1
  82.            Flags  = 0
  83.            Surfaces  = 4
  84.            BlocksPerTrack = 17
  85.            Reserved = 2
  86.            Interleave = 0
  87.            LowCyl = 21  ;  HighCyl = 800
  88.            Buffers = 30
  89.        GlobVec = -1
  90.            BufMemType = 1
  91.        Mount = 1
  92.        DosType = 0x444F5301
  93.        Stack = 4000
  94. #
  95.  
  96. /* Let's say you have an A2000 with an internal drive, and an external
  97.    drive, and you want to refer to the external drive as DF1: as well
  98.    as DF2:   Well, this MountList entry will do it for you.  This technique
  99.    can be extended to provide you with a drive A: and B: if you really
  100.    want.
  101. */
  102.  
  103. DF1:       Device = trackdisk.device
  104.            Unit   = 2
  105.            Flags  = 1
  106.            Surfaces  = 2
  107.            BlocksPerTrack = 11
  108.            Reserved = 2
  109.            Interleave = 0
  110.            LowCyl = 0  ;  HighCyl = 79
  111.            Buffers = 20
  112.            BufMemType = 3
  113. #
  114.